-
Notifications
You must be signed in to change notification settings - Fork 89
Fix Linux/Windows Testing support #149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| .library(name: "IssueReportingTestSupport", targets: ["IssueReportingTestSupport"]), | ||
| .library( | ||
| name: "IssueReportingTestSupport", | ||
| type: .dynamic, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to force this to be dynamic for Linux/Windows to be able to dynamically load its symbols.
| package.dependencies.append( | ||
| .package(url: "https://github.com/apple/swift-testing", from: "0.11.0") | ||
| ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was an artifact of early days Testing and was causing problems.
Took awhile to track down the issue, but hopefully this is it!